Publish Python SDK to PyPI as sst-sdk#6858
Merged
Merged
Conversation
- Rename package to sst-sdk (sst is taken on PyPI), import stays 'from sst import Resource' - Add PyPI metadata: classifiers, keywords, license, project URLs - Add hatch build config targeting src/sst for correct import name - Add Python SDK publish steps to release.yml (alongside JS and Rust) - Add PUBLISHING.md with one-time PyPI trusted publishing setup - Expand README with installation, migration guide, and usage examples - Pass GITHUB_TOKEN to docs build in check.yml to avoid rate limiting
vimtor
requested changes
May 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Publishes the SST Python SDK to PyPI as
sst-sdk, so users can install withpip install sst-sdkoruv add sst-sdkinstead of pointing at the git repo.Changes (5 files)
sdk/python/pyproject.toml— Rename tosst-sdk, add PyPI metadata, hatch build configsdk/python/README.md— Installation, migration guide, usage examplessdk/python/PUBLISHING.md— One-time PyPI trusted publishing setup docs.github/workflows/release.yml— Add Python SDK publish steps (after Rust, before Discord).github/workflows/check.yml— Pass GITHUB_TOKEN to docs build (fixes rate limit)Migration for users
No code changes —
from sst import Resourceworks the same.Setup required before first publish
Configure trusted publishing on PyPI for
sst-sdk(details insdk/python/PUBLISHING.md).